home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 23.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  546b  |  40 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int a=1, b=1;
  11.  
  12.     if( a < b )
  13.         a=1;
  14.     else if( a == b )
  15.         a=0;
  16.  
  17.     printf("a is %d\n",a);
  18.  
  19.     /* OR */
  20.     if( a < b )
  21.         a=1;
  22.     else if( a == b )
  23.         a=0;
  24.     else
  25.         a=2;
  26.  
  27.     printf("a is %d\n",a);
  28.  
  29.     /* OR */
  30.     if( a < b )
  31.         a=1;
  32.     else if( a == b )
  33.         a=2;
  34.     else if( a > b )
  35.         a=3;
  36.  
  37.     printf("a is %d\n",a);
  38.  
  39. }
  40.